home *** CD-ROM | disk | FTP | other *** search
/ Mastering Internet Develo…oft ActiveX Technologies / Mastering Internet Development with ActiveX (1996)(Microsoft).iso / labs / lab07.2 / solution / odetails.htx < prev    next >
Text File  |  1996-07-16  |  493b  |  29 lines

  1. <HTML>
  2. <HEAD>
  3. <TITLE>Main Street Market Sales Information</TITLE>
  4. </HEAD>
  5.  
  6. <BODY BGCOLOR="F3F3F3">
  7.  
  8. <H2>Main Street Market</H2>
  9. Details on Order #<%OrderID%>
  10. <TABLE BORDER>
  11. <TR>
  12. <TH>Product Name</TH>
  13. <TH>Unit Price</TH>
  14. <TH>Quantity</TH>
  15. <TH>Subtotal</TH>
  16. </TR>
  17. <%begindetail%>
  18. <TR>
  19. <TD><%ProductName%></TD>
  20. <TD align="right">$<%unitprice%></TD>
  21. <TD align="right"><%Quantity%></TD>
  22. <TD align="right">$<%subtotal%></TD>
  23. </TR>
  24. <%enddetail%>
  25. </TABLE>
  26.  
  27. </BODY>
  28. </HTML>
  29.